home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / YICONS23.ZIP;1 / INCLUDE / EVENT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-19  |  389 b   |  18 lines

  1. #ifndef EVENT.H
  2.  
  3. #define EVENT.H
  4.  
  5. #include "actor.h"
  6.  
  7. #define MAX_EVENTS 10
  8.  
  9. class event : public animactor
  10. {
  11. public:
  12.   void advance(void);
  13.   void addAt(int x, int y, int sqx, int sqy);
  14.   static animicon * eventIcons;
  15.   void assignEvent(byte icon_number, byte identity = 255);
  16.   static void loadEvent(int position, char far * filename, yakLib * myYakLib = NULL);
  17. };
  18. #endif